home *** CD-ROM | disk | FTP | other *** search
- on keyDown
- global global_volume, skip_intro
- if (the frame <= label("first_frame")) and (the key = " ") then
- set skip_intro to 1
- end if
- if the frame > label("mmstart") then
- if the key = "+" then
- set global_volume to global_volume + 1
- UpdateVolume()
- end if
- if the key = "-" then
- set global_volume to global_volume - 1
- UpdateVolume()
- end if
- end if
- if the frame = label("mac_intro") then
- if the key = "+" then
- set global_volume to global_volume + 1
- UpdateVolume()
- end if
- if the key = "-" then
- set global_volume to global_volume - 1
- UpdateVolume()
- end if
- if (the key = " ") and (the machineType <> 256) then
- go("mmstart")
- end if
- end if
- end
-